grid: draw css background and borders
authorPaolo Borelli <pborelli@gnome.org>
Sat, 2 Nov 2013 11:21:51 +0000 (12:21 +0100)
committerPaolo Borelli <pborelli@gnome.org>
Sun, 3 Nov 2013 13:13:16 +0000 (14:13 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=711324

gtk/gtkgrid.c

index 7e7f7a7aef7cbb240294ea79517b1a28a0b7679b..23cbc5365d7c2cf7c24a85c1a7e5df244b31292c 100644 (file)
@@ -1682,6 +1682,22 @@ gtk_grid_size_allocate (GtkWidget     *widget,
   gtk_grid_request_allocate_children (&request);
 }
 
+static gboolean
+gtk_grid_draw (GtkWidget *widget,
+               cairo_t   *cr)
+{
+  GtkStyleContext *context;
+  GtkAllocation allocation;
+
+  context = gtk_widget_get_style_context (widget);
+  gtk_widget_get_allocation (widget, &allocation);
+
+  gtk_render_background (context, cr, 0, 0, allocation.width, allocation.height);
+  gtk_render_frame (context, cr, 0, 0, allocation.width, allocation.height);
+
+  return GTK_WIDGET_CLASS (gtk_grid_parent_class)->draw (widget, cr);
+}
+
 static void
 gtk_grid_class_init (GtkGridClass *class)
 {
@@ -1699,6 +1715,7 @@ gtk_grid_class_init (GtkGridClass *class)
   widget_class->get_preferred_width_for_height = gtk_grid_get_preferred_width_for_height;
   widget_class->get_preferred_height_for_width = gtk_grid_get_preferred_height_for_width;
   widget_class->get_preferred_height_and_baseline_for_width = gtk_grid_get_preferred_height_and_baseline_for_width;
+  widget_class->draw = gtk_grid_draw;
 
   container_class->add = gtk_grid_add;
   container_class->remove = gtk_grid_remove;